home *** CD-ROM | disk | FTP | other *** search
/ PCBoard 15.1 Demo / PCBoard v15.1 DEMO - Clark Dev. Co (1994) - Disk 1 of 1.imd / PCBDISK.EXE / GEN / SAMPLE < prev    next >
Encoding:
Text File  |  1994-02-14  |  1.5 KB  |  34 lines

  1. @echo off
  2. rem
  3. rem A door batch file is no different than any other batch file on your system.
  4. rem The door batch file should be used to load and execute the door program
  5. rem you want to run.  If the program you run is not capable of communicating
  6. rem with the serial port, your users will not see anything on their screen when
  7. rem the program is running.
  8. rem
  9. rem If you need to run a program as a door which does not communicate with the
  10. rem serial port, you may be able to run it using DOORWAY.  DOORWAY will
  11. rem redraw any program that runs in 80x25 text mode.  The screen is redrawn
  12. rem on the remote user's screen using standard ANSI color codes.
  13. rem
  14. rem To help illustrate that a door batch file is nothing more than a regular
  15. rem batch file, the next two statements will simply check to see what your
  16. rem boot drive is and once found, use the DOS TREE command to show you the
  17. rem subdirectories on your drive.
  18. rem
  19.         if exist c:\autoexec.bat tree c:\
  20.         if not exist c:\autoexec.bat tree a:\
  21. rem
  22. rem The following four lines will make sure that the door always returns to
  23. rem PCBoard (even if the door is configured to operate via shelling).  You
  24. rem can use these four lines at the end of all of your door batch files.
  25.       
  26.       if "%INPCB%" == "Y" exit
  27.       %pcbdrive%
  28.       cd %pcbdir%
  29.       board
  30. rem
  31. rem These four statements first check to see if we shelled out to the door.
  32. rem If so, we exit back to PCBoard.  Otherwise, we change to the drive 
  33. rem and subdirectory where PCBoard executed from and rerun BOARD.BAT.
  34.